.headerMenu .bannerTop 
{
	width: 100%;
	height: 12px;
	background: #feffff;
	position: relative;
	float: left;
	animation-name: headerMenu-bannerAnimation;
	animation-duration: 2s;
	z-index: -1;
}

.headerMenu .bannerBottom 
{
	width: 100%;
	height: 12px;
	background: #feffff;
	position: relative;
	float: right;
	animation-name: headerMenu-bannerAnimation;
	animation-duration: 2s;
	z-index: -1;
}

@keyframes headerMenu-bannerAnimation 
{
	from {
		width: 0%;
		opacity: 0;
	}
	to {
		width: 100%;
		opacity: 1;
	}
}

.headerMenu > .container
{
	opacity: 0.93;
	width: 100%;
	height: 125px;
	display: flex;
	justify-content: center;
}

.headerMenu > .container > .small 
{
	width: 100%;
	height: 100%;
	display: flex;
	background-color: #afd275;
	justify-content: space-between;
	align-items: center;
	position: relative;
	padding-left: 20px;
	padding-right: 20px;
}

@media only screen and (min-width: 530px) 
{
	.headerMenu > .container > .small {
		display: none;
	}
}

.headerMenu 
{
	z-index: 9999;
	position: sticky;
	top: 0px;
	width: 100%;
	animation-name: headerMenu-initAnimation;
	animation-duration: 0.8s;
}

@keyframes headerMenu-initAnimation 
{
	from {
		top: -100%;
		opacity: 0;
	}
	to {
		top: 0%;
		opacity: 0.93;
	}
}

.headerMenu > .container > .large
{
	background-color: #afd275;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	padding-left: 15px;
	padding-right: 15px;
}

@media only screen and (max-width: 529px) 
{
	.headerMenu > .container > .large {
		display: none;
	}
}

.headerMenu > .container > .large > .container
{
	width: 100%;
	max-width: 600px;
	min-width: 360px;
	height: 100%;
	display: flex;
	flex-wrap:wrap;
	justify-content: space-around;
	align-items: center;
	position: relative;
}

.headerMenu > .container a
{
	font-family: 'Open Sans', sans-serif;
	color: white;
	text-decoration: none;
}

.headerMenu > .container > .large > .container a
{
	font-size: 25px;
	transition: 0.25s;
	background-color: transparent;
	padding-left: 5px;
	padding-right: 5px;
	text-shadow: 3px 4px 5px rgba(0,0,0,0.065);
	border-radius: 7px;
}

.headerMenu > .container > .small a
{
	font-size: 20px;
}

.headerMenu > .container > .large > .container a:hover
{
	background-color: white;
	color: #0f3614;
}

.headerMenu > .container > .small .w3-dropdown-click 
{
	position: relative;
	display: inline-block;
	cursor: pointer;
}

.headerMenu > .container > .small .w3-dropdown-content {
	cursor: auto;
	color: #ffffff;
	background-color: #afd275;
	display: none;
	position: absolute;
	min-width: 160px;
	margin: 0;
	padding: 0;
	right: 0;
}

.headerMenu > .container > .small .w3-button 
{
	margin: 0;
	padding: 0;
	border: none;
	display: inline-block;
	vertical-align: middle;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	background-color: inherit;
	text-align: center;
	cursor: pointer;
	white-space: nowrap
}

.headerMenu > .container > .small .container-menu 
{
	display: inline-block;
	cursor: pointer;
	list-style-type: none;
}

.headerMenu > .container > .small .container-menu .bar1,
.bar2,
.bar3 
{
	width: 35px;
	height: 5px;
	background-color: #ffffff;
	margin: 6px 0;
	transition: 0.4s;
}

.headerMenu > .container > .small .change .bar1 
{
	-webkit-transform: rotate(-45deg) translate(-9px, 6px);
	transform: rotate(-45deg) translate(-9px, 6px);
}

.headerMenu > .container > .small .change .bar2 
{
	opacity: 0;
}

.headerMenu > .container > .small .change .bar3 
{
	-webkit-transform: rotate(45deg) translate(-8px, -8px);
	transform: rotate(45deg) translate(-8px, -8px);
}

.headerMenu > .container > .small .dropdown-text 
{
	margin-left: 120%;
	margin-top: -140%;
	position: absolute;
	list-style-type: none;
	color: #8A0303;
}

.headerMenu > .container > .small .w3-show 
{
	display: block!important
}

.headerMenu > .container > .small .w3-bar-item 
{
	padding: 8px 16px;
	float: left;
	width: auto;
	border: none;
	display: block;
	outline: 0
}

.headerMenu > .container > .small .w3-bar-block 
{
	width: 100%;
	padding: 8px 16px;
	text-align: left;
	border: none;
	white-space: normal;
	float: none;
	outline: 0
}
